home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / aclocal-1.6 / init.m4 < prev    next >
Encoding:
M4 Source File  |  2005-10-16  |  3.8 KB  |  100 lines

  1. # Do all the work for Automake.                            -*- Autoconf -*-
  2.  
  3. # This macro actually does too much some checks are only needed if
  4. # your package does certain things.  But this isn't really a big deal.
  5.  
  6. # Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002
  7. # Free Software Foundation, Inc.
  8.  
  9. # This program is free software; you can redistribute it and/or modify
  10. # it under the terms of the GNU General Public License as published by
  11. # the Free Software Foundation; either version 2, or (at your option)
  12. # any later version.
  13.  
  14. # This program is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17. # GNU General Public License for more details.
  18.  
  19. # You should have received a copy of the GNU General Public License
  20. # along with this program; if not, write to the Free Software
  21. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  22. # 02111-1307, USA.
  23.  
  24. # serial 8
  25.  
  26. # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
  27. # written in clear, in which case automake, when reading aclocal.m4,
  28. # will think it sees a *use*, and therefore will trigger all it's
  29. # C support machinery.  Also note that it means that autoscan, seeing
  30. # CC etc. in the Makefile, will ask for an AC_PROG_CC use...
  31.  
  32.  
  33. AC_PREREQ([2.52])
  34.  
  35. # Autoconf 2.50 wants to disallow AM_ names.  We explicitly allow
  36. # the ones we care about.
  37. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
  38.  
  39. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
  40. # AM_INIT_AUTOMAKE([OPTIONS])
  41. # -----------------------------------------------
  42. # The call with PACKAGE and VERSION arguments is the old style
  43. # call (pre autoconf-2.50), which is being phased out.  PACKAGE
  44. # and VERSION should now be passed to AC_INIT and removed from
  45. # the call to AM_INIT_AUTOMAKE.
  46. # We support both call styles for the transition.  After
  47. # the next Automake release, Autoconf can make the AC_INIT
  48. # arguments mandatory, and then we can depend on a new Autoconf
  49. # release and drop the old call support.
  50. AC_DEFUN([AM_INIT_AUTOMAKE],
  51. [AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
  52.  AC_REQUIRE([AC_PROG_INSTALL])dnl
  53. # test to see if srcdir already configured
  54. if test "`cd $srcdir && pwd`" != "`pwd`" &&
  55.    test -f $srcdir/config.status; then
  56.   AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
  57. fi
  58.  
  59. # Define the identity of the package.
  60. dnl Distinguish between old-style and new-style calls.
  61. m4_ifval([$2],
  62. [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
  63.  AC_SUBST([PACKAGE], [$1])dnl
  64.  AC_SUBST([VERSION], [$2])],
  65. [_AM_SET_OPTIONS([$1])dnl
  66.  AC_SUBST([PACKAGE], [AC_PACKAGE_TARNAME])dnl
  67.  AC_SUBST([VERSION], [AC_PACKAGE_VERSION])])dnl
  68.  
  69. _AM_IF_OPTION([no-define],,
  70. [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
  71.  AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
  72.  
  73. # Some tools Automake needs.
  74. AC_REQUIRE([AM_SANITY_CHECK])dnl
  75. AC_REQUIRE([AC_ARG_PROGRAM])dnl
  76. AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
  77. AM_MISSING_PROG(AUTOCONF, autoconf)
  78. AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
  79. AM_MISSING_PROG(AUTOHEADER, autoheader)
  80. AM_MISSING_PROG(MAKEINFO, makeinfo)
  81. AM_MISSING_PROG(AMTAR, tar)
  82. AM_PROG_INSTALL_SH
  83. AM_PROG_INSTALL_STRIP
  84. # We need awk for the "check" target.  The system "awk" is bad on
  85. # some platforms.
  86. AC_REQUIRE([AC_PROG_AWK])dnl
  87. AC_REQUIRE([AC_PROG_MAKE_SET])dnl
  88.  
  89. _AM_IF_OPTION([no-dependencies],,
  90. [AC_PROVIDE_IFELSE([AC_PROG_][CC],
  91.                   [_AM_DEPENDENCIES(CC)],
  92.                   [define([AC_PROG_][CC],
  93.                           defn([AC_PROG_][CC])[_AM_DEPENDENCIES(CC)])])dnl
  94. AC_PROVIDE_IFELSE([AC_PROG_][CXX],
  95.                   [_AM_DEPENDENCIES(CXX)],
  96.                   [define([AC_PROG_][CXX],
  97.                           defn([AC_PROG_][CXX])[_AM_DEPENDENCIES(CXX)])])dnl
  98. ])
  99. ])
  100.